home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1998 #2 / Amiga Plus CD - 1998 - No. 2.iso / pd / musik / eagleplayer2.00 / developer / examples / formatloaders / raw 8bit-mono.s
Text File  |  1997-08-22  |  768b  |  29 lines

  1. *-----------------------------------------------------------------------------*
  2. *            Formatloader for RAW                      *
  3. *-----------------------------------------------------------------------------*
  4.             incdir    include:
  5.             include    misc/eagleplayerformatloader.i
  6.             include    exec/exec_lib.i
  7.             
  8.     FORMATHEADER    TAGS
  9.  
  10.     dc.b    "RAW Formatloader V1.0",10
  11.     dc.b    "done by Eagleeye/DFT 28.02.97",0
  12.     even
  13.  
  14. Tags:        dc.l    FL_Formatname,Formatname
  15.         dc.l    FL_Playername,Playername
  16.         dc.l    FL_Version,1<<16!0
  17.         dc.l    FL_Creator,Creator
  18.         dc.l    FL_Flags,FLF_FrequencyVariable
  19.         dc.l    FL_DefFreqPtr,FreqPtr
  20.         dc.l    FL_SampleType,FLST_8BitRAW
  21.         dc.l    FL_NumChannells,1
  22.         dc.l    0
  23.  
  24.  
  25. FreqPtr:    dc.l    10000
  26. Creator:    dc.b    "???, adapted by DEFECT",0
  27. Playername:    dc.b    "AIFF",0
  28. Formatname:    dc.b    "RAW 8Bit-Mono",0
  29.